home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / byobu-launcher < prev    next >
Text File  |  2009-10-11  |  1KB  |  43 lines

  1. #!/bin/sh -e
  2. #
  3. #    byobu-launcher
  4. #    Copyright (C) 2008 Canonical Ltd.
  5. #
  6. #    Authors: Nick Barcet <nick.barcet@ubuntu.com>
  7. #             Dustin Kirkland <kirkland@canonical.com>
  8. #
  9. #    This program is free software: you can redistribute it and/or modify
  10. #    it under the terms of the GNU General Public License as published by
  11. #    the Free Software Foundation, version 3 of the License.
  12. #
  13. #    This program is distributed in the hope that it will be useful,
  14. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #    GNU General Public License for more details.
  17. #
  18. #    You should have received a copy of the GNU General Public License
  19. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  20.  
  21. PKG="byobu"
  22. RUN="/var/run/screen/S-$USER"
  23.  
  24. # Make sure that we're not already in a screen session
  25. [ -z "$STY" ] || exit 0
  26. [ "$TERM" = "screen-bce" ] && exit 0
  27.  
  28. out=`screen -ls 2>/dev/null` || true
  29. if echo "$out" | grep -qsi "^No Sockets found in "; then
  30.     # Start new session
  31.     exec $PKG
  32. else
  33.     # Set window title
  34.     printf "\033]0;${USER}@$(hostname) - ${PKG}\007"
  35.     # Update ssh-agent socket
  36.     if [ -S "$SSH_AUTH_SOCK" ] && [ -w "$RUN" ]; then 
  37.         rm -f "$RUN/$PKG.ssh-agent"
  38.         ln -sf "$SSH_AUTH_SOCK" "$RUN/$PKG.ssh-agent"
  39.     fi
  40.     # Re-attach to existing session
  41.     exec screen -xRR
  42. fi
  43.